home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Komunik / opera / mac / Opera5.0Installer.PPC.sit / Opera 5.0 Installer.PPC / Help / english / help.css < prev    next >
Cascading Style Sheet File  |  2001-12-14  |  8KB  |  493 lines

  1. /* general help styles **********************************************/
  2.  
  3. @media screen, projection { 
  4.   body {
  5.     margin-left: auto;
  6.     margin-right: auto;
  7.     max-width: 45em;
  8.   }
  9. }
  10.  
  11. @media print {
  12.   body, table {
  13.     font-family: "Georgia", "Book Antiqua", "Garamond", "Verdana", serif;
  14.     font-size: 12pt;
  15.   }
  16. }
  17. @media screen {
  18.   body, table {
  19.     font-family: "Verdana", "Georgia", "Book Antiqua", "Garamond", "Verdana", serif;
  20.     font-size: 13px;
  21.   }
  22.   h1,h2 { 
  23.     font-weight: normal;
  24.   }
  25. }
  26.  
  27. body {
  28.   background-color: white;
  29.   color: black;
  30. }
  31.  
  32. h2 {
  33.   border-bottom: 1px solid black;
  34.   margin-top: 2em;
  35. }
  36.  
  37. @media projection {
  38.   h2 { 
  39.     page-break-before: always;
  40.   }
  41.   hr, .copyright {
  42.     display: none;
  43.   }
  44. }
  45.  
  46. hr {
  47.   height: 1px;
  48.   width: 100%;
  49. }
  50.  
  51. .alfa {
  52.   list-style: lower-alpha;
  53. }
  54.  
  55. .block {
  56.   margin-left: 2em;
  57.   margin-right: 2em;
  58. }
  59.  
  60. .indent {
  61.   margin-left: 3em;
  62. }
  63.  
  64. /* styles for links *************************************************/
  65.  
  66. a:link, a:visited, .fakelink { 
  67.   text-decoration: underline;
  68.   color: blue;
  69. }
  70.  
  71. a:hover { 
  72.   text-decoration: underline;
  73.   color: red;
  74. }
  75.  
  76. /* styles for text types ********************************************/
  77.  
  78. .url, .mailaddress, .html, .mime, .file { 
  79.   font-family: "Lucida Console", "Courier New", monospace;
  80.   color: green;
  81.   white-space: nowrap;
  82. }
  83.  
  84. kbd {
  85.   color: #333333;
  86.   background-color: #EFEFEF;
  87.   font-family: "Verdana";
  88.   font-weight: normal;
  89.   font-size: 80%;
  90.   text-align: center;
  91.   border-top: 2px double #CFCFCF;
  92.   border-left: 3px solid #BABABA;
  93.   border-right: 4px solid #AAAAAA;
  94.   border-bottom: 6px solid #909090;
  95.   padding-left: 0.2em;
  96.   padding-top: 0em;
  97.   padding-right: 0.2em;
  98.   padding-bottom: 0em;
  99.   line-height: 1.6em;
  100.   vertical-align: middle;
  101.   white-space: nowrap;
  102. }
  103.  
  104. .keyseq {
  105.   white-space: nowrap;
  106. }
  107.  
  108. em {
  109.   font-weight: bold;
  110.   font-style: normal;
  111. }
  112.  
  113. .term { 
  114.   font-style: italic;
  115. }
  116.  
  117. .note {
  118.   color: red;
  119.   font-weight: bold;
  120. }
  121.  
  122. .grayed {
  123.   color: gray;
  124. }
  125.  
  126. .copyright {
  127.   font-size: 0.75em;
  128.   text-align: center;
  129. }
  130.  
  131. .tea {
  132.   white-space: nowrap;
  133. }
  134.  
  135. /* styles for tables ************************************************/
  136.  
  137. td, th { 
  138.   text-align: left; 
  139.   vertical-align: top; 
  140. }
  141.  
  142. /* nice tables */
  143.  
  144. table.nice {
  145.   border-collapse: collapse;
  146.   border-style: hidden;
  147.   border-spacing: 0;
  148. }
  149.  
  150. .nice td, .nice th {
  151.   border: 1px dotted black;
  152.   padding: 0.25em;
  153. }
  154.  
  155. .nice th {
  156.   white-space: nowrap;
  157. }
  158.  
  159. /* keyboard tables */
  160.  
  161. .keytable table {
  162.   width: 100%;
  163.   border-collapse: collapse;
  164.   border-style: hidden;
  165.   border-spacing: 0;
  166. }
  167.  
  168. .keytable td {
  169.   width: 20%;
  170.   white-space: nowrap;
  171.   font: menu;
  172.   border: 1px dotted black;
  173.   padding: 0.25em;
  174.   padding-left: 0.5em;
  175. }
  176.  
  177. .keytable th {
  178.   width: 80%;
  179.   font-weight: normal;
  180.   border: 1px dotted black;
  181. }
  182.  
  183. .keytable h3 {
  184.   margin-bottom: 0;
  185.   margin-top: 0.75em;
  186. }
  187.  
  188. /* gesture tables */
  189.  
  190. .gestures table {
  191.   width: 100%;
  192.   border-collapse: collapse;
  193.   border-style: hidden;
  194.   border-spacing: 0;
  195. }
  196.  
  197. .gestures td {
  198.   width: 50%;
  199.   white-space: nowrap;
  200.   border: 1px dotted black;
  201. }
  202.  
  203. .gestures th {
  204.   width: 50%;
  205.   font-weight: normal;
  206.   border: 1px dotted black;
  207. }
  208.  
  209. /* styles for dialogs ***********************************************/
  210.  
  211. .prefs {
  212.     background-color: ThreeDFace;
  213.     color: WindowText;
  214.     font-family: "MS Sans Serif", sans-serif;
  215.     font-size: 12px;
  216.     border-top: 2px solid ThreeDLightShadow;
  217.     border-right: 2px solid ThreeDShadow;
  218.     border-bottom: 2px solid ThreeDShadow;
  219.     border-left: 2px solid ThreeDLightShadow;
  220.     min-width: 500px;
  221. }
  222. .titlebar {
  223.     font-family: "MS Sans Serif", sans-serif;
  224.     background-color: ActiveCaption;
  225.     font-size: 14px;
  226.     font-weight: bold;
  227.     color: CaptionText;
  228.     margin-bottom: 4px;
  229. }
  230. .groupbox {
  231.     font-family: "MS Sans Serif", sans-serif;
  232.     border: 2px groove ThreeDFace;
  233.     margin-left: 4px;
  234.     margin-right: 4px;
  235.     margin-bottom: 2px;
  236.     margin-top: 0px;
  237.     padding: 6px;
  238. }
  239. .groupbox td {
  240.         color: WindowText;
  241. }
  242. .grouptitle {
  243.     font-family: "MS Sans Serif", sans-serif;
  244.     font-weight: bold;
  245.     margin-bottom: 0px;
  246.     margin-left: 10px;
  247. }
  248.  
  249. .groupbox ul,
  250. .groupbox li,
  251. .block ul,
  252. .block li,
  253. .ui ul,
  254. .ui li,
  255. .keytable ul,
  256. .keytable li,
  257. .nice ul,
  258. .nice li,
  259. ul.lean,
  260.   .lean li
  261.   list-style: none;
  262.   margin: 0;
  263.   padding: 0;
  264.   spacing: 0;
  265. }
  266.  
  267. .mailbuttons {
  268.   margin-bottom: 1em;
  269. }
  270.  
  271. .mal {
  272.   text-align: right;
  273. }
  274.  
  275. .fixbrowse { 
  276.   text-align: right;
  277. }
  278.  
  279. /* styles for menus *************************************************/
  280.  
  281. table.mainmenu, table.menu {
  282.   border-spacing: 0;
  283. }
  284.  
  285. .menu th, .menu td, .mainmenu th {
  286.   text-align: left;
  287.   font-weight: normal;
  288.   vertical-align: top;
  289.   white-space: nowrap;
  290. }
  291.  
  292. .menu th {
  293.   font: menu;
  294.   color: MenuText;
  295.   background-color: ThreeDFace;
  296.   border-left: 2px outset ThreeDLightShadow;
  297.   border-right: 2px ridge ThreeDDarkShadow;
  298.   padding: 0.15em;
  299.   padding-left: 1em;
  300.   padding-right: 1em;
  301.   white-space: nowrap;
  302. }
  303.  
  304. .menu td {
  305.   font-family: "Arial", "Tahoma", sans-serif;
  306.   font-size: 11px;
  307.   padding-left: 0.5em;
  308.   padding-right: 0.5em;
  309.   vertical-align: middle;
  310. }
  311.  
  312. .mainmenu th {
  313.   font: menu;
  314.   color: MenuText;
  315.   background-color: ThreeDFace;
  316.   padding: 4px;
  317.   padding-left: 0.5em;
  318.   padding-right: 0.5em;
  319. }
  320.  
  321. .mainmenu {
  322.   font: menu;
  323.   color: MenuText;
  324.   background-color: ThreeDFace;
  325.   padding: 0;
  326.   padding-left: 0.5em;
  327.   padding-right: 0.5em;
  328. }
  329.  
  330. .sep th {
  331.   border-top: 2px groove ThreeDLightShadow;
  332. }
  333.  
  334. .sep td {
  335.   border-top: 1px dotted black;
  336. }
  337.  
  338. th.sub {
  339.   padding-left: 3em;
  340. }
  341.  
  342. th.sub2 {
  343.   padding-left: 4.5em;
  344. }
  345.  
  346. .faketop th {
  347.   border-top: 2px outset ThreeDLightShadow;
  348.   padding-top: 0.4em;
  349. }
  350.  
  351. .fakebottom th {
  352.   border-bottom: 2px ridge ThreeDDarkShadow;
  353.   padding-bottom: 0.4em;
  354. }
  355.  
  356. .faketop td {
  357.   vertical-align: bottom;
  358. }
  359.  
  360. .fakebottom td {
  361.   vertical-align: top;
  362. }
  363.  
  364. td img {
  365.   margin: 0;
  366. }
  367.  
  368.  
  369. span.cool, .cool td {
  370.   color: red;
  371. }
  372.  
  373. .coolkey td, .coolkey th {
  374.   color: red;
  375. }
  376.  
  377. .info {
  378.   font-weight: bold;
  379.   text-decoration: underline;
  380. }
  381.  
  382. .ui a:link, .ui a:visited, .mainmenu a:link, .mainmenu a:visited {
  383.   color: MenuText;
  384.   text-decoration: none;
  385. }
  386.  
  387. .ui a:hover, .mainmenu a:hover {
  388.   color: HighlightText;
  389.   background-color: ActiveCaption;
  390.   text-decoration: none;
  391. }
  392.  
  393. .ui {
  394.   background-color: ThreeDFace;
  395.   color: MenuText;
  396.   padding: 0px;
  397.   padding-left: 0.5em;
  398.   padding-right: 0.5em;
  399.   font: menu;
  400.   text-align: left;
  401.   white-space: nowrap;
  402. }
  403.  
  404. .uifont {
  405.   font: menu;
  406.   text-align: left;
  407.   white-space: nowrap;
  408. }
  409.  
  410. /* input styles *****************************************************/
  411.  
  412. .button {
  413.   min-width: 75px;
  414.   min-height: 24px;
  415. }
  416.  
  417. .click {
  418.   width: 140px;
  419.   height: 50px;
  420. }
  421.  
  422. /* style for start page *********************************************/
  423.  
  424. table.startpage {
  425.   font-size: 13px;
  426.   margin-left: auto;
  427.   margin-right: auto;
  428. }
  429.  
  430. .startpage h2 {
  431.   margin: 0;
  432.   border-bottom: 1px solid black;
  433.   page-break-before: auto;
  434.   border-bottom: none;
  435. }
  436.  
  437. .startpage h3 {
  438.   margin-bottom: 0.5em;
  439. }
  440.  
  441. .startpage td {
  442.   padding-left: 1em;
  443.   padding-right: 1em;
  444.   font-weight: normal;
  445.   white-space: nowrap;
  446.   vertical-align: top;
  447. }
  448.  
  449. .startpage a:link, .startpage a:visited {
  450.   text-decoration: none;
  451.   color: black;
  452. }
  453.  
  454. .startpage a:hover {
  455.   text-decoration: none;
  456.   color: white;
  457.   background-color: black;
  458. }
  459.  
  460. .startpage ul, .startpage li { 
  461.   list-style: none;
  462.   margin: 0;
  463.   padding: 0;
  464.   spacing: 0;
  465. }
  466.  
  467. .pd {
  468.   width: 100%;
  469.   border-bottom: 1px dotted black;
  470. }
  471.  
  472.  
  473. /* styles for older versions *************************************/
  474.  
  475.  .key {
  476.   white-space: nowrap;
  477.  }
  478.  
  479. .sweet { 
  480.   font-weight: bold;
  481. }
  482.  
  483.  
  484. /* styles for editing (temporary) *************************************/
  485.  
  486. .tbd { 
  487.   color: red;
  488.   font-weight: bold;
  489. }
  490.  
  491. /* end of styles ****************************************************/
  492.